home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Adobe Air 1.5
/
AdobeAIRInstaller.exe
/
setup.swf
/
scripts
/
_statusTextStyleStyle.as
< prev
next >
Wrap
Text File
|
2008-10-29
|
956b
|
37 lines
package
{
import mx.core.IFlexModuleFactory;
import mx.styles.CSSStyleDeclaration;
import mx.styles.StyleManager;
public class _statusTextStyleStyle
{
public function _statusTextStyleStyle()
{
super();
}
public static function init(param1:IFlexModuleFactory) : void
{
var fbs:IFlexModuleFactory = param1;
var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".statusTextStyle");
if(!style)
{
style = new CSSStyleDeclaration();
StyleManager.setStyleDeclaration(".statusTextStyle",style,false);
}
if(style.defaultFactory == null)
{
style.defaultFactory = function():void
{
this.color = 5789784;
this.fontSize = 10;
this.alpha = 0.6;
};
}
}
}
}